home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE08 / EXCEPT / HANDLER.PAS next >
Encoding:
Pascal/Delphi Source File  |  1996-01-05  |  211 b   |  7 lines

  1. procedure TForm1.OurHandler(Sender: TObject; E: Exception);
  2. begin
  3.   if MessageDlg(E.message + #13 + ' Continue anyway?', mtError,
  4.                [mbYes,mbNo], 0) = mrNo then
  5.     Application.Terminate
  6. end;
  7.